auto merge of #845 : jbranchaud/cargo/add-missing-semicolon-for-new-project-main...
authorbors <bors@rust-lang.org>
Fri, 14 Nov 2014 01:29:40 +0000 (01:29 +0000)
committerbors <bors@rust-lang.org>
Fri, 14 Nov 2014 01:29:40 +0000 (01:29 +0000)
commit252e5ef93832b06bcd00961197a28fadb65600cd
tree5c908cf51dd86de761da58eb1adfb5479a7980a9
parent33df08ed9aac20d955791577c28ee922fde849f9
parentdf7a5831d52f9d5179bc08c28c35b22f09319184
auto merge of #845 : jbranchaud/cargo/add-missing-semicolon-for-new-project-main, r=alexcrichton

When you run `cargo new project-name --bin`, a project is generated by cargo
with a file, `src/main.rs`. This file has a main function with one line that
prints hello, world, but a semicolon is missing from the end of the
expression.